runtime.heapStatsDelta.inHeap (field)

11 uses

	runtime (current package)
		arena.go#L911: 	atomic.Xaddint64(&stats.inHeap, -int64(s.npages*pageSize))
		arena.go#L1075: 	atomic.Xaddint64(&stats.inHeap, int64(userArenaChunkBytes))
		metrics.go#L334: 				out.scalar = uint64(in.heapStats.committed - in.heapStats.inHeap -
		metrics.go#L364: 				out.scalar = uint64(in.heapStats.inHeap) - in.heapStats.inObjects
		mheap.go#L1359: 		atomic.Xaddint64(&stats.inHeap, int64(nbytes))
		mheap.go#L1648: 		atomic.Xaddint64(&stats.inHeap, -int64(nbytes))
		mstats.go#L463: 		if gcController.heapInUse.load() != uint64(consStats.inHeap) {
		mstats.go#L465: 			print("runtime: consistent value=", consStats.inHeap, "\n")
		mstats.go#L672: 	inHeap          int64 // byte delta of memory placed in the heap
		mstats.go#L698: 	a.inHeap += b.inHeap